home *** CD-ROM | disk | FTP | other *** search
/ U.S. Robotics Connections 2 / US Robotics Connections.iso / mac / SourceMc / CompuServeCD.DIR / 00025.ls < prev    next >
Encoding:
Text File  |  1996-02-29  |  935 b   |  45 lines

  1. on startMovie
  2.   global gNewPath
  3.   set gNewPath to the moviePath
  4.   set the exitLock to 1
  5.   if the soundLevel = 0 then
  6.     set the soundLevel to 1
  7.   end if
  8.   set the keyDownScript to "okToquit"
  9. end
  10.  
  11. on oktoQuit
  12.   if the commandDown and (the key = "q") then
  13.     repeat with x = 1 to 48
  14.       puppetSprite(x, 0)
  15.     end repeat
  16.     set the keyDownScript to EMPTY
  17.     go("quitScreen")
  18.   else
  19.     if the key = "0" then
  20.       set the soundLevel to 0
  21.     end if
  22.     if the key = "1" then
  23.       set the soundLevel to 1
  24.     end if
  25.     if the key = "2" then
  26.       set the soundLevel to 2
  27.     end if
  28.     if the key = "3" then
  29.       set the soundLevel to 3
  30.     end if
  31.     if the key = "4" then
  32.       set the soundLevel to 4
  33.     end if
  34.     if the key = "5" then
  35.       set the soundLevel to 5
  36.     end if
  37.     if the key = "6" then
  38.       set the soundLevel to 6
  39.     end if
  40.     if the key = "7" then
  41.       set the soundLevel to 7
  42.     end if
  43.   end if
  44. end
  45.